home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / tclX-6.4 / help / Tcl.brf < prev    next >
Encoding:
Text File  |  1992-12-17  |  3.8 KB  |  79 lines

  1. control/break    Exit the current loop.
  2. control/case    Select code block to execute base on matching a string against a pattern.
  3. control/catch    Trap errors while executing a command.
  4. control/continue    Continue execution of the next iteration of a loop.
  5. control/error    Return an error.
  6. control/errorCode    Variable holding symbolic error information.
  7. control/errorInfo    Variable holding stack trace of an error.
  8. control/eval    Command to evaluate strings as Tcl code.
  9. control/exit    Terminate the current process.
  10. control/for    Loop control command.
  11. control/foreach    Loop on each element of a list.
  12. control/if    Conditional command execution based on evaluating an expression.
  13. control/proc    Define a Tcl procedure.
  14. control/rename    Rename or delete a command or procedure.
  15. control/return    Exit the current procedure, optionally returning a value.
  16. control/source    Read and evaluate a file of Tcl code.
  17. control/uplevel    Execute a command in another environment up the procedure call stack.
  18. control/while    Loop while an expression is true.
  19. files/close    Close an open file or pipeline.
  20. files/eof    Test for end-of-file.
  21. files/file    Return status information about an file name, including parsing the name.
  22. files/flush    Flush a file buffer.
  23. files/gets    Read a line from a file.
  24. files/glob    Perform file name globbing.
  25. files/open    Open a file or pipeline.
  26. files/puts    Write a string to a file.
  27. files/read    Read bytes from a file.
  28. files/seek    Change the access position of a file.
  29. files/tell    Return the current access position of a file.
  30. intro/backslash    Tcl backslash substitution.
  31. intro/braces    Grouping arguments with braces.
  32. intro/brackets    Command substitution with brackets.
  33. intro/built-in-vars    Standard built-in Tcl variables.
  34. intro/comments    Inserting comments in Tcl code.
  35. intro/data_types    Tcl data types.
  36. intro/dollar    Variable Substitution With $.
  37. intro/double_quotes    Grouping arguments with double-quotes.
  38. intro/expressions    Tcl expressions.
  39. intro/procedures    Tcl procedures.
  40. intro/regexps    Regular expressions.
  41. intro/results    Results of a command execution.
  42. intro/semi-colons    Separating commands with semi-colons.
  43. intro/syntax    Basic Tcl command syntax.
  44. intro/variables    Tcl variables and arrays.
  45. libraries/unknown    Unknown command trap handler.
  46. lists/concat    Concatenates lists into a single list.
  47. lists/join    Join elements of a list into a string.
  48. lists/lappend    Append elements to an array variable.
  49. lists/lindex    Extract an element of a list.
  50. lists/linsert    Insert an new element in a list.
  51. lists/list    Generate a list.
  52. lists/llength    Return the number of elements in a list.
  53. lists/lrange    Extract a range of elements from a list.
  54. lists/lreplace    Replace elements of a list.
  55. lists/lsearch    Search a list for a pattern.
  56. lists/lsort    Sort the elements of a list.
  57. lists/split    Split a string into a list of elements.
  58. math/expr    Evaluate an expression.
  59. math/incr    Increment a variable.
  60. processes/exec    Run a Unix process.
  61. status/cd    Change the current working directory.
  62. status/history    Redo or list previously executed interactive commands.
  63. status/info    Provide state information on the Tcl interpreter.
  64. status/pwd    Return the current working directory.
  65. strings/append    Append strings to a variable.
  66. strings/format    Generate a formated string using a format specification.
  67. strings/regexp    Match a string against a regular expression.
  68. strings/regsub    Match a string against a regular expression and perform substitution on it.
  69. strings/scan    Parse a string based on a format specification.
  70. strings/string    Perform operations on a string.
  71. time/time    Return the execution time for a Tcl command.
  72. variables/array    Return information about an array variable.
  73. variables/env    Variable for accessing the program's environment.
  74. variables/global    Declare a variable as global.
  75. variables/set    Return or set the value of a variable.
  76. variables/trace    Trace access to variables.
  77. variables/unset    Delete a variable or array element.
  78. variables/upvar    Bind a variable to another variable up the procedure call stack.
  79.